home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_iisess.asp < prev    next >
Encoding:
Text File  |  1999-06-03  |  393 b   |  20 lines

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4.  
  5. <% 
  6. Dim key
  7.  
  8. ' generically sets Session variables from the QueryString...
  9.  
  10. For Each key In Request.QueryString
  11.     Response.write "KEY:" & key & "<BR>"
  12.     Response.write "VAL:" & Request.QueryString(key) & "<P>"
  13.     Session(key)=Request.QueryString(key)
  14. Next
  15. %>
  16.  
  17. <HTML>
  18. <BODY>
  19. </BODY>
  20. </HTML>